var testing.matchList
9 uses
testing (current package)
testing.go#L464: matchList = flag.String("test.list", "", "list tests, examples, and benchmarks matching `regexp` then exit")
testing.go#L496: matchList *string
testing.go#L2301: if *matchList != "" {
testing.go#L2404: if _, err := matchString(*matchList, "non-empty"); err != nil {
testing.go#L2405: fmt.Fprintf(os.Stderr, "testing: invalid regexp in -test.list (%q): %s\n", *matchList, err)
testing.go#L2410: if ok, _ := matchString(*matchList, test.Name); ok {
testing.go#L2415: if ok, _ := matchString(*matchList, bench.Name); ok {
testing.go#L2420: if ok, _ := matchString(*matchList, fuzzTarget.Name); ok {
testing.go#L2425: if ok, _ := matchString(*matchList, example.Name); ok {